﻿#visual {
	position: relative;
	width: 100%;
	height: 68vh;
	-o-background-size: cover !important;
	   background-size: cover !important;
}

#visual:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(37, 89, 159, 0.28);
}

#visual .visual-txt-con {
	position: relative;
	text-align: left;
	display: table;
	width: 100%;
	height: 100%;
	color: #fff;
	padding: 0 100px;
}

.table-cell-layout {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}

#visual .visual-txt-con .table-cell-layout {
	padding-top: 100px;
}

#visual .visual-sub-txt {
	font-size: 46px;
	font-weight: 400;
	line-height: 1.4;
}

#visual .visual-tit {
	font-size: 35px;
	text-transform: uppercase;
}

.main-scroll {
	font-size: 14px;
	padding-left: 40px;
	position: relative;
	color: #fff;
	height: 28px;
	line-height: 28px;
	margin: 80px 0 40px;
}

.main-scroll:before {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	left: 12px;
	top: 9px;
	background-color: #25599f;
	border-radius: 50%;
	z-index: 5;
	-webkit-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
	-moz-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
	  -o-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
	     animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}


@-webkit-keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-5px);
	}
}

@-moz-keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		     transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		-moz-transform: translateY(-8px);
		     transform: translateY(-8px);
	}
}

@-o-keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		-o-transform: translateY(0);
		   transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		-o-transform: translateY(-8px);
		   transform: translateY(-8px);
	}
}

@keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		  -o-transform: translateY(0);
		     transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		-moz-transform: translateY(-8px);
		  -o-transform: translateY(-8px);
		     transform: translateY(-8px);
	}
}

.main-scroll:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 30px;
	border-radius: 50px;
	left: 5px;
	background-color: #fff;
	top: -4px;
	opacity: 0.5;
}

.visual-nav {
	position: absolute;
	bottom: 0;
	left: 100px;
	width: -webkit-calc(100% - 200px);
	width: -moz-calc(100% - 200px);
	width: calc(100% - 200px);
	background: rgba(255, 255, 255, 0.65);
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
}

.visual-nav li {
	position: relative;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
	-webkit-flex-grow: 1;
	   -moz-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	text-align: center;
}

.visual-nav li:after {
	position: absolute;
	content: '';
	width: 0;
	height: 4px;
	top: 0;
	left: 0;
	background: #25599f;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

.visual-nav li:hover:after,
.visual-nav li.active:after {
	width: 100%;
}

.visual-nav a {
	display: block;
	padding: 20px 0;
	font-size: 15px;
}

.visual-nav li:hover a,
.visual-nav li.active a {
	color: #25599f;
}

.paddtop30 {
	padding-top: 30px;
}

/* about */
.ny-main .ind-title {
	margin-bottom: 10px;
}

.profile-text {
	position: relative;
	width: 50%;
	padding: 3% 5% 50px 0;
}

.profile-text h5 {
	font-weight: bold;
	font-size: 16px;
	color: #25599f;
}

.company-p {
	height: 476px;
	padding-right: 20px;
	overflow-y: scroll;
	margin-top: 25px;
}

.company-p::-webkit-scrollbar {
	width: 6px;
	height: 16px;
	background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
.company-p::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
.company-p::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #555;
}

.profile-text>p {
	font-size: 15px;
	margin-bottom: 15px;
	line-height: 2;
}

.profile-num {
	display: none;
	position: absolute;
	bottom: 60px;
	left: 0;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	background: #f5f5f5;
	width: 100%;
}

.profile-num-two {
	left: auto;
	right: -100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9;
}

.profile-num li {
	position: relative;
	-webkit-flex-grow: 1;
	   -moz-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	text-align: center;
	padding: 10px 0 23px;
	width: 50%;
}

.profile-num li:after {
	position: absolute;
	content: '';
	width: 1px;
	height: 56px;
	top: 38px;
	right: 0;
	background: rgba(0, 0, 0, 0.1);
}

.profile-num-two li:after {
	background: rgba(255, 255, 255, 0.3);
}

.profile-num li:last-child:after {
	display: none;
}

.profile-num li h4 {
	font-size: 40px;
	color: #25599f;
}

.profile-num li span {
	color: #666;
	font-size: 15px;
}

.profile-num-two li h4 {
	color: #fff;
}

.profile-num-two li span {
	color: rgba(255, 255, 255, 0.7);
}

.profile-img {
	width: 50%;
	position: relative;
}

.profile-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	-moz-transition: all .8s;
	transition: all .8s;
	-o-object-fit: cover;
	object-fit: cover;
}


.ind-structure {
	-o-background-size: cover;
	   background-size: cover;
	background-position: center;
}

.structure-img {
	width: 1130px;
	margin: 0 auto;
}

.structure-img img {
	max-width: 100%;
	width: auto;
	margin: 0 auto;
}


/* history 修改 */
.his-section {
	position: relative;
	margin-top: 30px;
}

.his-section:before {
	display: block;
	content: "";
	width: 11px;
	height: 1px;
	background: #ddd;
	position: absolute;
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.his-section:after {
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background: #ddd;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: 0.5px;
}

.innerwrap {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
}

.history {
	position: relative;
}

.history>div {
	position: relative;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	width: 50%;
	/* margin-bottom: -174px; */
}

.history>div:first-child {
	top: 0;
	padding-top: 20px;
}

.history>div:last-child .conarea {
	height: auto;
    padding-bottom: 150px;
}

.history>div:nth-child(odd) {
	margin-left: 50%;
}

.history>div:nth-child(even) {
	text-align: right;
	margin-right: 50%;
}

.history>div .titlearea {
	position: relative;
	z-index: 10;
}

.history>div .titlearea:before {
	display: block;
	content: "";
	width: 1000%;
	height: 1px;
	bottom: 0;
	background: #ddd;
	position: absolute;
}

.history>div:nth-child(odd) .titlearea {
	padding: 26px 0 0 40px;
}

.history>div:nth-child(odd) .titlearea:before {
	left: 0;
}

.history>div:nth-child(even) .titlearea {
	padding: 30px 40px 0 0;
}

.history>div:nth-child(even) .titlearea:before {
	right: 0;
}

.history>div .titlearea:after {
	display: block;
	content: "";
	width: 5px;
	height: 5px;
	background: #82c6e4;
	position: absolute;
	bottom: -2px;
	z-index: 10;
}

.history>div:nth-child(odd) .titlearea:after {
	right: 100%;
	margin-right: -3px;
}

.history>div:nth-child(even) .titlearea:after {
	left: 100%;
	margin-left: -2px;
}

.history>div .titlearea h4 {
	font-size: 46px;
	color: #222;
	margin-bottom: 5px;
}
.history>div .titlearea h4 span{
	font-size: 30px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 5px;
}
.history>div .titlearea p {
	font-size: 28px;
	color: #959595;
	line-height: 1.4;
	padding-top: 7px;
}

.history>div .conarea {
	position: relative;
	padding-bottom: 80px;
}
/* 
.history>div:first-child .conarea {
	padding-bottom: 380px;
}

.history>div:nth-child(2) .conarea {
	padding-bottom: 280px;
}

.history>div:nth-child(3) .conarea {
	padding-bottom: 300px;
} */

.history>div:nth-child(odd) .conarea {
	padding-left: 40px;
}

.history>div:nth-child(even):after {
	display: block;
    content: "";
    width: 1000%;
    height: 100%;
    background: #f5f5f5;
    position: absolute;
    left: -50%;
    top: 0;
}

.history>div:nth-child(even) .conarea {
	padding-right: 40px;
}

.history>div .conarea ul {
	padding: 30px 0 0;
	position: relative;
	z-index: 10;
}

.history>div .conarea ul li {
	overflow: hidden;
	margin-bottom: 15px;
}

.history>div .conarea ul li:last-child {
	margin-bottom: 0;
}

.history>div .conarea ul li .year {
	width: 80px;
	font-size: 18px;
	color: #222;
	font-weight: 600;
	line-height: 1.6;
}

.history>div .conarea ul li .con {
	width: -webkit-calc(100% - 100px);
	width: -moz-calc(100% - 100px);
	width: calc(100% - 100px);
	font-size: 16px;
	color: #444;
	line-height: 1.6;
}

.history>div:nth-child(odd) .conarea ul li .year {
	float: left;
	margin-right: 20px;
}

.history>div:nth-child(odd) .conarea ul li .con {
	float: left;
}

.history>div:nth-child(even) .conarea ul li .year {
	float: right;
	margin-left: 20px;
}

.history>div:nth-child(even) .conarea ul li .con {
	float: right;
}

.history>div .conarea .bg_year {
	display: none;
	position: absolute;
	bottom: 26px;
	z-index: 10;
	font-size: 100px;
	color: #82c6e4;
	font-weight: bold;
	line-height: 0.8em;
}

.history>div .conarea .bg_year span {
	display: block;
}

.history #y3 .conarea .bg_year {
	/*bottom: -50px;*/
}

.history>div:nth-child(odd) .conarea .bg_year {
	color: #f5f5f5;
    right: 100%;
    text-align: right;
}

.history>div:nth-child(even) .conarea .bg_year {
	color: #fff;
    left: 100%;
    text-align: left;
}

.history>div:nth-child(even) .img {
	position: absolute;
	width: 60%;
	left: 100%;
	top: -100px;
	z-index: 10;
	margin-left: 40px;
	padding-top: 32%;
}

.history>div:nth-child(odd) .img {
	position: absolute;
	width: 60%;
	right: 100%;
	top: -100px;
	z-index: 10;
	margin-right: 40px;
	padding-top: 32%;
}
.history>div .img img{
	height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
/* .history>div:first-child .img {
	top: 0;
} */

/* history 修改  end */

.ind-history {
	position: relative;
	padding-bottom: 0;
}

/* .ind-history:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../images/history-bg.png) no-repeat center;
	background-size: cover;
	opacity: 0.1;
} */

.history-view {
	position: relative;
	padding: 20px 100px 0;
}

.history-view:before {
	content: '';
	width: 200px;
	height: 0;
	border-bottom: 2px solid #25599f;
	opacity: 0.2;
	filter: alpha(opacity=20);
	position: absolute;
	left: -100px;
	top: 187px;
}

.history-view:after {
	content: '';
	width: 200px;
	height: 0;
	border-bottom: 2px solid #25599f;
	opacity: 0.2;
	filter: alpha(opacity=20);
	position: absolute;
	right: -100px;
	top: 187px;
}

.history-view li {
	float: left;
	width: 200px;
	height: 374px;
	position: relative;
	z-index: 50;
}

.history-view li:before {
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 2px solid #25599f;
	opacity: 0.2;
	filter: alpha(opacity=20);
	position: absolute;
	left: 50px;
	top: 167px;
}

.history-view li .ic {
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	top: 140px;
	border-radius: 50%;
	background-color: #fff;
	-o-background-size: contain;
	   background-size: contain;
	background-position: center;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.history-view li .ic2 {
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	top: 140px;
	border-radius: 50%;
	background-color: #fff;
	-o-background-size: contain;
	   background-size: contain;
	background-position: center;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.history-view li.ti .box {
	position: absolute;
	left: 0;
	bottom: 250px;
}

.history-view li .box h4 {
	color: #25599f;
	font-weight: 500;
	font-size: 28px;
	line-height: 1;
	letter-spacing: -1px;
	margin-bottom: 4px;
}

.history-view li .box h4 em {
	font-weight: bold;
}

.history-view li .box .txt {
	max-height: 130px;
	overflow: auto;
	padding-right: 15px;
}

.history-view li .box p {
	color: #858585;
	line-height: 22px;
	font-size: 15px;
	margin-top: 5px;
}

.history-view li.bi .box {
	position: absolute;
	left: 0;
	top: 213px;
}

.history-view li .don:hover .ic {
	opacity: 0;
	filter: alpha(opacity=0);
}

.history-view li .don:hover .ic2 {
	opacity: 1;
	filter: alpha(opacity=100);
}

.history-view li .don:hover h4 {
	color: #009844;
}

.history-view .swiper-button-prev {
	position: absolute;
	left: 0;
	top: 179px;
	border: none;
	background: none;
	opacity: 1;
}

.history-view .swiper-button-next {
	position: absolute;
	right: 0;
	top: 179px;
	border: none;
	background: none;
	opacity: 1;
}


.ind-culture {
	position: relative;
}

.ind-culture:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(37, 89, 159, 0.28);
}

.con_list {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.con_list li {
	position: relative;
	width: 25%;
	min-height: 390px;
	padding: 30px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	text-align: center;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.con_list li:nth-child(1) {
	background: #fff;
}

.con_list li .c_box {
	display: table-cell;
	vertical-align: middle;
}

.con_list li .c_box img {
	width: 33px;
	margin: 0 auto;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
.con_list li .c_box img.icon-2{
	display: none;
}

.con_list li:hover .c_box img {
	margin-top: -20px;
}

.con_list li .s_tit {
	padding: 14px 0;
	font-size: 24px;
	line-height: 30px;
}

.con_list li .s_txt {
	font-size: 15px;
	line-height: 1.5;
	color: #5f5f5f;
	letter-spacing: 1px;
	word-break: keep-all;
	padding: 0 4%;
}

.con_list li .s_txt i {
	display: block;
}

.con_list li:nth-child(2n) .s_txt {
	color: #fff;
}

.con_list li .s_txt:after {
	display: block;
	content: "";
	width: 25px;
	height: 1px;
	background: #000;
	margin: 15px auto 20px;
}

.con_list li:nth-child(2n) .s_txt:after {
	background: #fff;
}

.con_list li .num,
.con_list li .etc {
	font-size: 2.6vw;
	display: inline-block;
	line-height: 58px;
	font-weight: 600;
	text-transform: capitalize;
}

.con_list li:nth-child(1) .num,
.con_list li:nth-child(1) .etc,
.con_list li:nth-child(3) .num {
	color: #25599f;
}

.con_list li:nth-child(1) .etc {
	font-size: 30px;
	margin-left: 5px;
	vertical-align: bottom;
	line-height: inherit;
}

.con_list li:nth-child(2) {
	background: #25599f;
	color: #fff;
	font-weight: 300;
}

.con_list li:nth-child(3) {
	background: #fff;
}

.con_list li:nth-child(4) {
	background: #009844;
	color: #fff;
	font-weight: 300;
}

/* about  end */

/* contact */
.store-contact {
	font-size: 15px;
}

.store-contact .row {
	margin: 0 -17px;
}

.store-contact .col {
	float: left;
	width: 33.33333%;
	padding: 0 17px;
}

.store-contact .col p,
.store-contact .text p {
	margin-bottom: 15px;
	font-size: 17px;
}

.store-contact .col input {
	width: 100%;
	padding: 18px 25px 18px 55px;
	line-height: 30px;
	height: 56px;
	background-color: #f9f9f9;
	background-position: 20px center;
	background-repeat: no-repeat;
	-o-background-size: 22px;
	   background-size: 22px;
	border: 1px solid #e7e7e7;
	color: #919191;
}

.store-contact .col input.upper {
	background-color: #25599f;
	color: #fff;
}

.store-contact .col input.user {
	background-image: url(../images/online-1.png);
}

.store-contact .col input.tel {
	background-image: url(../images/online-2.png);
}

.store-contact .col input.E-mail {
	background-image: url(../images/online-3.png);
}

.store-contact .text textarea.massage {
	background-image: url(../images/online-4.png);
}

.store-contact .col input.upper.user {
	background-image: url(../images/online-1-1.png);
}

.store-contact .col input.upper.tel {
	background-image: url(../images/online-2-1.png);
}

.store-contact .col input.upper.E-mail {
	background-image: url(../images/online-3-1.png);
}

.store-contact .text textarea.upper.massage {
	background-image: url(../images/online-4-1.png);
}

.store-contact .text {
	margin-top: 38px;
	position: relative;
}

.store-contact .text textarea {
	padding: 18px 25px 18px 55px;
	background-color: #f9f9f9;
	background-position: 20px 18px;
	background-repeat: no-repeat;
	-o-background-size: 22px;
	   background-size: 22px;
	border: 1px solid #e7e7e7;
	color: #919191;
	height: 180px;
	width: 100%;
}

.store-contact .text textarea.upper {
	background-color: #25599f;
	color: #fff;
}

.store-contact .button-bubble {
	margin-top: 50px;
}

.button-bubble {
	display: block;
	width: 240px;
	height: 56px;
	margin: 30px auto 0;
	line-height: 56px;
	position: relative;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.button-bubble .button {
	display: block;
	width: 100%;
	text-align: center;
	color: #FFFFFF;
	background: #25599f;
	border-radius: 3px;
	font-style: normal;
	text-transform: uppercase;
	position: relative;
	cursor: pointer;
	z-index: 1;
}

.button-bubble .button:hover {
	opacity: 0.8;
}

.store-contact .col input::-webkit-input-placeholder,
.store-contact .text textarea::-webkit-input-placeholder {
	color: #919191;
}

.store-contact .col input::-moz-placeholder,
.store-contact .text textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #919191;
}

.store-contact .col input:-moz-placeholder,
.store-contact .text textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #919191;
}

.store-contact .col input:-ms-input-placeholder,
.store-contact .text textarea:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #919191;
}


.ind-find {
	background: #f9f9f9;
}

.words-top {
	padding-bottom: 52px;
	/* border-bottom: 1px solid #e0e0e0; */
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.words-top .text {
	font-size: 30px;
	/* font-weight: bold;
    color: #25599f; */
	max-width: 50%;
	line-height: 1.5;
}

.words-top .add .wo {
	text-align: right;
}

.words-top .add .i {
	width: 35px;
	display: inline-block;
	margin-bottom: .5rem;
}

.words-top .add .t0 {
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 10px;
	color: #666666;
}

.words-top .add .t1 {
	font-size: 16px;
	line-height: 30px;
}

.words-top .add .img {
	width: 150px;
	height: 150px;
	margin-left: .75rem;
}

.words-top .add .img p {
	text-align: center;
	font-size: 14px;
	color: #666;
	margin-top: 3px;
}

.mapbox {
	width: 100%;
	height: 450px;
	border: 1px solid #e0e0e0;
}

.mapbox * {
	width: auto;
}

.branch-view {
	width: -webkit-calc(100% + 40px);
	width: -moz-calc(100% + 40px);
	width: calc(100% + 40px);
	margin-left: -20px;
}

.branch-view li {
	position: relative;
	top: 0;
	width: -webkit-calc(33.33% - 40px);
	width: -moz-calc(33.33% - 40px);
	width: calc(33.33% - 40px);
	margin: 40px 20px 0;
	background: #fff;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

.branch-view li:hover {
	top: -10px;
}

.branch-box {
	position: relative;
	padding: 7% 7% 80px;
	height: 100%;
	overflow: hidden;
}

.branch-view li span {
	position: absolute;
	width: 200px;
	height: 200px;
	border: 26px solid rgba(0, 0, 0, 0.03);
	border-radius: 50%;
	bottom: -70px;
	right: -60px;
	overflow: hidden;
}

.branch-box:after {
	position: absolute;
	content: '';
	width: 50px;
	height: 50px;
	bottom: 20px;
	right: 30px;
	background: url(../picture/logo-icon.png) no-repeat center;
	-o-background-size: 50px;
	   background-size: 50px;
}

.branch-view li h3 {
	position: relative;
	margin-bottom: 40px;
}

.branch-view li h3:after {
	position: absolute;
	content: '';
	width: 30px;
	height: 3px;
	bottom: -20px;
	left: 0;
	background: #25599f;
}

.branch-view li p {
	font-size: 15px;
	color: #666;
}

/* contact  end */


/* news */
.public-view li {
	background: #f5f5f5;
	padding: 30px;
	margin-bottom: 30px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.public-view li:hover {
	background: #25599f;
}

.public-view li .public-time {
	width: 100px;
	height: 100px;
	background: #25599f;
	color: #fff;
	text-align: center;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.public-view li:hover .public-time {
	background: #fff;
	color: #25599f;
}

.public-view li .public-time span {
	display: block;
	font-size: 40px;
	line-height: 1;
	font-weight: bold;
	margin-top: 18px;
}

.public-view li .public-time p {
	font-size: 13px;
}

.public-view li .public-text {
	padding-left: 30px;
	width: -webkit-calc(100% - 100px);
	width: -moz-calc(100% - 100px);
	width: calc(100% - 100px);
}

.public-view li .public-text h3 {
	font-size: 18px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.public-view li:hover .public-text h3 {
	color: #fff;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.public-view li .public-text p {
	color: #666;
	font-size: 15px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.public-view li:hover .public-text p {
	color: #fff;
}

.public-view li .public-text p:hover {
	text-decoration: underline;
}

.public-view li .public-text p span {
	display: inline-block;
	padding-left: 24px;
	background: url(../images/fujian.png) no-repeat left;
	-o-background-size: 18px;
	   background-size: 18px;
}

.public-view li:hover .public-text span {
	background: url(../images/fujian-1.png) no-repeat left;
	-o-background-size: 18px;
	   background-size: 18px;
}

.public-box {
	width: -webkit-calc(100% - 380px);
	width: -moz-calc(100% - 380px);
	width: calc(100% - 380px);
}

.pubilc-right {
	width: 380px;
	padding-left: 30px;
}

.pubilc-search {
	background: #f5f5f5;
	padding: 30px;
	margin-bottom: 30px;
}

.pubilc-search h3 {
	position: relative;
	color: #25599f;
	margin-bottom: 10px;
}

.pubilc-search h3:before {
	position: absolute;
	content: '';
	top: 8px;
	left: -30px;
	width: 3px;
	height: 20px;
	background: #25599f;
}

.pubilc-sel {
	width: 100%;
	padding: 10px;
	margin-top: 15px;
}

.pubilc-sel-two {
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.pubilc-sel-two .pubilc-sel {
	width: 48%;
}

.pubilc-input {
	width: 100%;
	padding: 13px 15px;
	margin-top: 15px;
	font-size: 14px;
}

.public-button {
	width: 100%;
	background: #25599f;
	color: #fff;
	padding: 12px 0;
	font-size: 14px;
	margin-top: 15px;
}

.pubilc-news a {
	display: block;
	margin-top: 18px;
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.pubilc-news a:hover i {
	text-decoration: underline;
}

.pubilc-news a span {
	display: inline-block;
	color: #25599f;
	font-weight: bold;
}

.pagex {
	text-align: center;
	margin-top: 50px;
}

.pagination {
	text-align: center;
	font-size: 18px;
	color: #666666;
}

.pagination a {
	vertical-align: middle;
	display: inline-block;
	width: 45px;
	height: 45px;
	color: #666666;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	margin: 0 10px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.pagination a:hover,
.pagination a.active {
	background-color: #25599f;
	color: #ffffff;
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.information-view li {
	position: relative;
	width: 25%;
	padding: 50px 30px;
	border: 1px solid #e0e0e0;
	margin-left: -1px;
	margin-top: -1px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.information-view li:hover {
	background: #25599f;
}

/* .information-view li:after{
	position: absolute;
    content: '';
    width: 0;
    height: 4px;
    bottom: 0;
    left: 0;
	background: #25599f;
	-webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.information-view li:hover:after{
	width: 100%;
} */
.information-view li .information-time span {
	display: inline-block;
	vertical-align: baseline;
	font-size: 30px;
	color: #25599f;
}

.information-view li .information-time p {
	display: inline-block;
	vertical-align: baseline;
	font-size: 15px;
	padding-left: 10px;
	color: #666;
}

.information-view li:hover .information-time span,
.information-view li:hover .information-time p {
	color: #fff;
}

.information-view li .information-text {
	position: relative;
	margin-top: 7vh;
}

.information-view li .information-text:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 1px;
	top: -3.5vh;
	left: 0;
	background: rgba(0, 0, 0, 0.3);
}

.information-view li:hover .information-text:before {
	background: rgba(255, 255, 255, 0.3);
}

.information-view li .information-text h3 {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	overflow: hidden;
	/*white-space: nowrap;*/
	/*-webkit-text-overflow: ellipsis;*/
	/*-o-text-overflow: ellipsis;*/
	   /*text-overflow: ellipsis;*/
}

.information-view li:hover .information-text h3 {
	color: #fff;
}

.information-view li .information-text p {
	margin-top: 20px;
	color: #666;
	font-size: 15px;
	height: 54px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.information-view li:hover .information-text p {
	color: #fff;
}

.information-view li .information-text span {
	margin-top: 10vh;
	position: relative;
	display: inline-block;
	zoom: 1;
	font-size: 14px;
	color: #666;
	padding-right: 15px;
	background: url(../images/right-b.png) no-repeat center right;
	-o-background-size: 10px;
	   background-size: 10px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.information-view li:hover .information-text span {
	padding-right: 20px;
	color: #fff;
	background: url(../images/right-w.png) no-repeat center right;
	-o-background-size: 10px;
	   background-size: 10px;
}

.company-view {
	width: 100%;
	border-top: 1px solid #eaeaea;
	border-left: 1px solid #eaeaea;
	overflow: hidden;
}

.company-view .ind-news-box {
	width: 33.33%;
	padding: 60px 50px;
	border: 1px solid #eaeaea;
	margin-left: -1px;
	margin-top: -1px;
	background: #fbfbfb;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

.company-view .ind-news-box:hover {
	background: #25599f;
}

.company-view .ind-news-box .ind-news-img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	 -ms-transform: scale(1);
	  -o-transform: scale(1);
	     transform: scale(1);
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	opacity: 0;
}

.company-view .ind-news-box:hover .ind-news-img {
	opacity: 1;
}


.leads-view {
	width: 102%;
	margin-left: -2%;
}

.leads-view li {
	width: 31.33%;
	margin: 0 1% 2%;
}

.leads-view li .leads-img {
	position: relative;
	width: 100%;
	padding-top: 75%;
	overflow: hidden;
}

.leads-view li .leads-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all 1.2s;
	-o-transition: all 1.2s;
	-moz-transition: all 1.2s;
	transition: all 1.2s;
	-o-object-fit: cover;
	/*object-fit: cover;*/
}

.leads-view li:hover .leads-img img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	 -ms-transform: scale(1.05);
	  -o-transform: scale(1.05);
	     transform: scale(1.05);
}

.leads-view li .leads-text {
	padding-right: 30px;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

.leads-view li .leads-text>span {
	display: block;
	margin: 20px 0 15px;
}

.leads-view li .leads-text h3 {
	overflow: hidden;
	white-space: nowrap;
	-webkit-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.leads-view li:hover .leads-text h3 {
	color: #25599f;
}

.leads-view li .leads-text p {
	margin-top: 10px;
	color: #8e8e8e;
	font-size: 14px;
    height: 75px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.leads-view li .leads-text .leads-detail {
	margin-top: 50px;
}

.leads-view li .leads-text .leads-detail span {
	position: relative;
	display: inline-block;
	zoom: 1;
	font-size: 14px;
	color: #666;
	padding: 6px 40px 6px 30px;
	background: url(../images/right-b.png) no-repeat 94px center;
	-o-background-size: 10px;
	   background-size: 10px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 20px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.leads-view li:hover .leads-text .leads-detail span,
.leads-view li.leads-item:hover .leads-text .leads-detail span {
	color: #fff;
	background: #25599f url(../images/right-w.png) no-repeat 94px center;
	-o-background-size: 10px;
	   background-size: 10px;
}

.group-view li .leads-text {
	position: relative;
	top: -40px;
	padding: 30px;
	width: 90%;
	margin: 0 auto;
	background: #f5f5f5;
}

.group-view li:hover .leads-text {
	top: -60px;
}

.group-view li .leads-text>span {
	margin-top: 0;
	margin-bottom: 6px;
}

/* .group-view li .leads-text h3{
	font-size: 18px;
	height: 64px;
	white-space: inherit;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
} */
.group-view li .leads-text .leads-detail {
	margin-top: 20px;
}

.group-view li:hover .leads-text {
	background: #25599f;
}

.group-view li:hover .leads-text span,
.group-view li:hover .leads-text h3 {
	color: #fff;
}

.group-view li:hover .leads-text p {
	color: rgba(255, 255, 255, 0.4);
}

.group-view li:hover .leads-text .leads-detail span {
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.ind-group .pagex {
	margin-top: 0;
}

.cd-main {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-align-items: stretch;
	   -moz-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	overflow: hidden;
}

.cd-list__full {
	width: -webkit-calc(100% - 400px);
	width: -moz-calc(100% - 400px);
	width: calc(100% - 400px);
	letter-spacing: 1px;
	padding-right: 7%;
	border-right: 1px solid #efefef;
	padding-bottom: 70px;
}

.cd-list__title {
	position: relative;
	border-bottom: 1px solid rgba(193, 189, 189, 0.4);
	padding-bottom: 34px;
	margin-bottom: 40px;
}

.cd-list__full h3 {
	color: #111;
	line-height: 1.6;
	font-size: 28px;
	margin-bottom: 14px;
	margin-top: 0;
	font-weight: 400;
}

.cd-list__full span {
	text-transform: uppercase;
	font-size: 14px;
	/* color: rgba(17, 17, 17, 0.5); */
}

.cd-list__title .img {
	position: absolute;
	top: 0;
	right: 0;
}

.cd-list__title .img img {
	width: 120px;
}

.cd-list__full h5 {
	display: block;
	color: #333;
	font-size: 22px;
	margin-bottom: 20px;
	font-weight: 400;
}

.cd-list__full h6 {
	display: block;
	color: #333;
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 400;
}

.cd-list__full p {
	font-size: 15px;
	line-height: 2;
	color: #111;
	margin-bottom: 20px;
	text-indent: 2em;
}

.cd-list__full p img {
	display: block;
	max-width: 100%;
	width: auto;
}

.cd-push__full {
	position: relative;
	width: 380px;
}

.cd-push__content {
	position: relative;
	width: 100%;
	top: 0;
	bottom: auto;
}

.cd-push__main {
	/*border-left: 1px solid #efefef;*/
	width: 100%;
	padding-left: 50px;
}

.cd-push__content.fixed {
	position: fixed;
	top: 48px;
	bottom: auto;
}

.cd-push__content.pos {
	position: absolute;
	bottom: 0;
	top: auto;
}

.cd-target__box {
	letter-spacing: 1px;
}

.mb-80 {
	margin-bottom: 50px;
}

.cd-target__box span {
	font-size: 20px;
	line-height: 1.4;
	color: #111;
	display: block;
	margin-bottom: 25px;
}

.cd-target__list li {
	margin-bottom: 30px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	-moz-transition: all .4s;
	transition: all .4s;
	overflow: hidden;
}

.cd-target__list li:hover span {
	text-decoration: underline;
}

.cd-target__list a {
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transition: color .4s;
	-o-transition: color .4s;
	-moz-transition: color .4s;
	transition: color .4s;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(17, 17, 17, 0.8);
	overflow: hidden;
}

.cd-target__list .current a {
	color: #579632;
}

.cd-target__list a:hover {
	color: #579632;
}

.cd-target__list li .img {
	position: relative;
	width: 140px;
	height: 80px;
	margin-right: 20px;
}

.cd-target__list a img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

.cd-target__list a span {
	width: -webkit-calc(100% - 160px);
	width: -moz-calc(100% - 160px);
	width: calc(100% - 160px);
	height: 54px;
	display: block;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(17, 17, 17, 0.8);
	margin-top: 10px;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.topbtm_bar {
	border-top: 1px solid #efefef;
	padding-top: 40px;
}

.topbtm_bar .icon {
	position: relative;
	margin: 0 10px;
	display: inline-block;
}

.topbtm_bar .icon:before {
	content: "";
	-webkit-transition: ease .5s;
	-o-transition: ease .5s;
	-moz-transition: ease .5s;
	transition: ease .5s;
	display: block;
	z-index: 1;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #bebecc;
	position: absolute;
	left: -15px;
	top: 0;
}

.topbtm_bar .next .icon:before {
	right: -15px;
	left: auto;
}

.topbtm_bar a {
	width: 48%;
	height: 30px;
	line-height: 30px;
	color: #111;
	letter-spacing: 0.5px;
}

.topbtm_bar a p {
	width: -webkit-calc(100% - 100px);
	width: -moz-calc(100% - 100px);
	width: calc(100% - 100px);
	overflow: hidden;
	white-space: nowrap;
	-webkit-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.topbtm_bar a:hover {
	color: #036eb8;
}

.topbtm_bar a.fr {
	text-align: right;
}

.topbtm_bar span {
	margin: 0 10px
}

.topbtm_bar i {
	font-style: normal;
	font-family: "Gasalt-Regular";
	font-size: 17px;
}

/* news  end */

/* honor */
.ind-honor-main {
	background: #f5f5f5;
}

.ind-honor-main .ind-honor-view {
	margin-top: 20px;
}

.ind-honor-main .ind-honor-view .swiper-slide img {
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.ind-honor-main .ind-honor-view p {
	color: #333;
	font-weight: 500;
}

.ind-honor-main .title-text span {
	display: block;
	width: 60%;
	font-size: 15px;
	color: #666;
	margin-top: 10px;
	word-break: keep-all;
}

.honor-view {
	width: 101%;
	margin-left: -0.5%;
}

.honor-view li {
	position: relative;
	top: 0;
	width: 11.5%;
	padding: 2.5% 1.5%;
	margin: 0 0.5% 1%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #fff;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

.honor-view li:hover {
	top: -10px;
	background: #25599f;
}

.honor-view li img {
	width: 60px;
	margin: 0 auto;
}

.honor-view li img.icon-1 {
	display: block;
}

.honor-view li img.icon-2 {
	display: none;
}

.honor-view li:hover img.icon-1 {
	display: none;
}

.honor-view li:hover img.icon-2 {
	display: block;
}

.honor-view li p {
	margin: 10px 0 0;
	font-size: 17px;
	text-align: center;
}

.honor-view li:hover p {
	color: #fff;
}

.honor-view li span {
	text-transform: uppercase;
	font-size: 15px;
	color: #666;
}


.awards-left {
	width: 66.66%;
}
.ind-awards-view .slick-slide>div{
	margin: 0 10px;
}
.ind-awards-view li{
	margin: 7px 0;
}
.awards-right {
	position: relative;
	width: 30.33%;
	margin-left: 3%;
}

.awards-right img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	-moz-transition: all .8s;
	transition: all .8s;
	-o-object-fit: cover;
	object-fit: cover;
}

.ind-awards-view .swiper-button-prev,
.ind-awards-view .swiper-button-next {
	top: -85px;
}


.ind-team {
	background: #fbfbfb;
	padding-bottom: 0;
	/* background: url(../images/a18.jpg) center; */
}

.team-view {
	position: relative;
	display: none;
}
.team-view-3{
	padding-bottom: 6vw;
}
.team-view:nth-child(1) {
	display: block;
}

.team-view .i {
	position: relative;
	width: 43.75vw;
	height: 43.75vw;
	margin: 0 auto;
	top: 0;
}

.team-view-1 .i {
	height: 21.875vw;
	overflow: hidden;
}

.team-view .i .i0 {
	left: 0;
	top: 0;
}

.team-view .i .i2 {
	width: 23.875vw;
	height: 23.875vw;
	border-radius: 50%;
	overflow: hidden;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.team-view-1 .i .i2 {
	top: 21.5vw;
}

.team-view .items {
	position: absolute;
	min-height: 100px;
	line-height: 100px;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	font-size: 20px;
	color: #333333;
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

.team-view .items1,
.team-view .items3,
.team-view .items5,
.team-view .items7,
.team-view .items9 {
	left: 0;
	padding-left: 120px;
	text-align: left;
}

.team-view .items2,
.team-view .items4,
.team-view .items6,
.team-view .items8,
.team-view .items10 {
	right: 0;
	padding-right: 120px;
	text-align: right;
}

.team-view .items1,
.team-view .items2 {
	top: 5vw;
}

.team-view-3 .items1,
.team-view-3 .items2 {
	top: 2vw;
}

.team-view .items3,
.team-view .items4 {
	top: 15vw;
}

.team-view-2 .items3,
.team-view-2 .items4 {
	top: 17vw;
}

.team-view-3 .items3,
.team-view-3 .items4 {
	top: 11.5vw;
}

.team-view .items5,
.team-view .items6 {
	top: 25vw;
}

.team-view-2 .items5,
.team-view-2 .items6 {
	top: 29vw;
}

.team-view-3 .items5,
.team-view-3 .items6 {
	top: 21vw;
}

.team-view .items7,
.team-view .items8 {
	top: 35vw;
}

.team-view-3 .items7,
.team-view-3 .items8 {
	top: 30vw;
}

.team-view-3 .items9,
.team-view-3 .items10 {
	top: 39vw;
}

.team-view .items .img {
	width: 100px;
	height: 100px;
	background: url(../images/j5.png) no-repeat center;
	-o-background-size: 100%;
	   background-size: 100%;
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}

.team-view .items:hover .img {
	background: url(../images/j6.png) no-repeat center;
	-o-background-size: 100%;
	   background-size: 100%;
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.team-view .items1 .img,
.team-view .items3 .img,
.team-view .items5 .img,
.team-view .items7 .img,
.team-view .items9 .img {
	left: 0;
}

.team-view .items2 .img,
.team-view .items4 .img,
.team-view .items6 .img,
.team-view .items8 .img,
.team-view .items10 .img {
	right: 0;
}

.team-view .items .img img {
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.team-view .items:hover .img .i0 {
	opacity: 0;
}

.team-view .items:hover .img .i1 {
	opacity: 1;
}

.team-view .items .img .i1 {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
}

.team-view .items .span {
	display: inline-block;
	vertical-align: middle;
}

.team-view .items .tit {
	font-size: 27px;
	line-height: 40px;
}

.team-view .items .txt {
	line-height: 1.5;
	margin-top: 10px;
	font-size: 16px;
	width: 14vw;
}

.team-view .items:hover {
	color: #25599f;
}

.title-info span {
	display: block;
	text-align: right;
	font-size: 16px;
	line-height: 2;
	padding: 3px 0;
	background: #f1f1f1;
	width: 136px;
	text-align: center;
	margin: 0 5px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	cursor: pointer;
}

.title-info span.on,
.title-info span:hover {
	background: #25599f;
	color: #fff;
}

/* honor  end */

/* jobs */
.ind-Growing {
	padding-left: 0;
	padding-right: 0;
}

.ind-Growing .ind-title {
	padding: 0 100px;
}

.growing-box li {
	position: relative;
}

.growing-box li::before {
	position: absolute;
	content: '';
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background: #f5f5f5;
	-webkit-transition: all 1.5s;
	-o-transition: all 1.5s;
	-moz-transition: all 1.5s;
	transition: all 1.5s;
}

.growing-box li.appear::before {
	width: 70%;
}

.growing-box li:nth-child(2n)::before {
	left: auto;
	right: 0;
}

.growing-box li a {
	position: relative;
	margin-bottom: 80px;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.growing-box li:nth-child(2n) a {
	direction: rtl;
}

.growing-box li .growing-box-text {
	position: relative;
	width: 60%;
}

.growing-box li .growing-box-text h4 {
	position: absolute;
	width: 60%;
	color: rgba(0, 0, 0, 0.05);
	left: 0;
	bottom: 0;
	line-height: 1;
	z-index: -1;
}

.growing-box li:nth-child(2n) .growing-box-text h4 {
	left: auto;
	right: 0;
}

.growing-box li .growing-box-text h4 img {
	width: 100%;
	opacity: 0.07;
}

.growing-box li .growing-box-txt {
	position: relative;
	width: 500px;
	float: right;
	margin-right: 16%;
	margin-top: 60px;
}

.growing-box li:nth-child(2n) .growing-box-txt {
	margin-right: 0;
	margin-left: 16%;
	float: left;
	direction: ltr;
}

.growing-box li .growing-box-txt::before {
	position: absolute;
	content: '”';
	font-size: 200px;
	top: 0;
	right: 0;
	color: #000;
	font-weight: bold;
	line-height: 0.8;
	opacity: 0.1;
}

.growing-box li .growing-box-txt h3 {
	font-size: 28px;
}

.growing-box li .growing-box-txt h5 {
	font-size: 18px;
}

.growing-box li .growing-box-txt i {
	font-size: 20px;
	display: block;
	margin-top: 20px;
	font-weight: bold;
}

.growing-box li .growing-box-txt p {
	font-size: 15px;
	margin: 20px 0 60px;
	color: #666;
	/* word-break: keep-all; */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}

.growing-box li .growing-box-img {
	width: 40%;
	margin-top: -40px;
	padding-bottom: 40px;
}

.growing-box li .growing-box-img img {
	width: 350px;
}

.ind-growing {
	position: relative;
}

.ind-growing::before {
	position: absolute;
	content: '';
	width: 64.5%;
	height: 100%;
	background: #f5f5f5;
	right: 0;
	top: 0;
}

.growing-view {
	position: relative;
}

.growing-left {
	width: 33.33%;
	padding-right: 5%;
}

.growing-jj {
	background: #f5f5f5;
	padding: 25px 30px;
}

.growing-jj h3 {
	color: #25599f;
	font-weight: bold;
}

.growing-jj span {
	color: #666;
	display: block;
	margin-top: 5px;
	font-size: 15px;
}

.growing-right {
	width: 66.66%;
	padding-left: 5%;
}

.growing-right p {
	color: #666;
	margin-bottom: 20px;
	font-size: 15px;
}

.growing-right p strong {
	color: #25599f;
	font-size: 16px;
}

.back-ny {
	display: block;
	margin-top: 50px;
}

.back-ny span {
	color: #666;
	font-size: 15px;
	border-bottom: 1px solid #666;
	padding-bottom: 5px;
	padding-right: 30px;
	background: url(../images/back.png) no-repeat right 0;
	-o-background-size: 18px;
	   background-size: 18px;
}

.back-ny span:hover {
	background: url(../images/back-b.png) no-repeat right 0;
	-o-background-size: 18px;
	   background-size: 18px;
	color: #25599f;
	border-color: #25599f;
}



.recruitment-view {
	border-top: 1px dotted rgba(0, 0, 0, 0.1);
	margin-top: 60px;
	padding-top: 60px;
}

.recruitment-logo img {
	max-width: 100%;
	width: auto;
	margin-bottom: 20px;
}

.recruitment-view h3 {
	font-size: 30px;
	text-align: center;
}

.recruitment-title {
	margin: 60px 0 40px;
	border-left: 10px solid #009844;
}

.recruitment-title h4 {
	display: inline-block;
	font-size: 17px;
	color: #fff;
	background: #25599f;
	padding: 4px 30px;
}

.recruitment-view p {
	font-size: 15px;
	margin: 20px 0;
	line-height: 2;
	color: #666;
}

.recruitment-view p strong {
	font-size: 17px;
}

.recru-fj a {
	color: #666;
	font-size: 15px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.recru-fj span {
	display: inline-block;
	padding-left: 24px;
	background: url(../images/fujian.png) no-repeat left;
	-o-background-size: 18px;
	   background-size: 18px;
}

.recru-fj a:hover {
	text-decoration: underline;
}

.tab-box-t {
	width: 100%;
	margin: 0 auto;
	background: #fff;
	border-radius: 8px;
}
.recruitment-view form{
	width: 100%;
	display: block;
}
.tab-box-t table {
	display: block;
	width: 100%;
	letter-spacing: 0.5px;
}
.tab-box-t tbody{
	width: 100%;
	display: block;
}

.tab-box-t tr {
	width: 100%;
	background: #fff;
	overflow: hidden;
}

.tab-box-t tr:nth-child(2n) {
	background: #fbfbfb;
}

.tab-box-t th {
	position: relative;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	width: 12.25%;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-right: 1px solid #fff;
	background-color: #25599f;
	color: #fff;
}

.tab-box-t th:nth-child(1) {
	width: 2%;
}

/* .tab-box-t th:nth-child(3),
.tab-box-t th:nth-child(8) {
	width: 7%;
} */

.tab-box-t td {
	width: 98%;
	/* height: 40px; */
	border: 1px solid #f2f2f2;
	font-size: 14px;
	color: #666;
	text-align: center;
	line-height: 1.8;
	vertical-align: middle;
	padding: 20px;
}
.tab-box-t td:nth-child(1) {
	width: 2%;
}

.tab-box-t td span {
	display: block;
}
.tab-td{
	width: 100%;
	overflow: hidden;
}
.tab-td>div{
	float: left;
	width: 12.5%;
	height: 100%;
	padding: 20px;
	border-right: 1px solid #f2f2f2;
}
.tab-tdd{
	padding:0 !important;
}
/* jobs  end */

/* business */
.ind-business-view li {
	position: relative;
	margin-bottom: 130px;
}

.ind-business-view li .business-img {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
}

.ind-business-view li .business-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-transition: all 1.2s;
	-o-transition: all 1.2s;
	-moz-transition: all 1.2s;
	transition: all 1.2s;
	-o-object-fit: cover;
	object-fit: cover;
}

.ind-business-view li:hover .business-img img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	 -ms-transform: scale(1.05);
	  -o-transform: scale(1.05);
	     transform: scale(1.05);
}

.ind-business-view li .business-text {
	position: absolute;
	width: 60%;
	padding: 70px 90px 70px 70px;
	bottom: -110px;
	right: 0;
	z-index: 10;
	text-align: left;
	background: #fff;
}

.ind-business-view li:nth-child(2n) .business-text {
	left: 0;
	right: auto;
}

.ind-business-view li .business-text .sub_tit {
	font-size: 20px;
	color: #222;
	font-weight: 700;
	text-transform: capitalize;
}

.ind-business-view li .business-text .sub_tit:after {
	display: block;
	content: "";
	width: 1px;
	height: 30px;
	background: #222;
	margin: 13px 0px 10px 0;
}

.ind-business-view li .business-text h4 {
	font-size: 28px;
	color: #222;
	line-height: 140%;
	letter-spacing: -1px;
}

.ind-business-view li .business-text p {
	font-size: 15px;
	color: #666;
	margin: 30px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}


.business-info-nr {
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.bus-info-text {
	width: 60%;
}

.bus-info-text h3 {
	font-size: 32px;
	margin-bottom: 10px;
}

.bus-info-text span {
	position: relative;
	display: block;
	text-transform: uppercase;
	font-size: 22px;
	padding-left: 70px;
}

.bus-info-text span::before {
	position: absolute;
	content: '';
	width: 50px;
	height: 1px;
	top: 18px;
	left: 0;
	background: #000;
}

.bus-info-text p {
	margin-top: 30px;
	line-height: 2;
	color: #666;
	font-size: 15px;
}

.bus-info-img {
	position: relative;
	padding-top: 50px;
}

.bus-info-img .swiper-slide {
	position: relative;
	width: 100%;
	padding-top: 40%;
	overflow: hidden;
}

.bus-info-img .swiper-slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all .8s;
	-o-transition: all .8s;
	-moz-transition: all .8s;
	transition: all .8s;
	-o-object-fit: cover;
	object-fit: cover;
}

.bus-info-img .swiper-pagination {
	position: absolute;
	width: auto;
	top: 40px;
	left: 0;
	text-align: left;
	font-size: 20px;
	color: #999999;
	bottom: auto;
}

.bus-info-img .swiper-pagination .swiper-pagination-current {
	color: #25599f;
	font-weight: bold;
	font-size: 30px;
}

/* .bus-info-img .swiper-button-prev,
.bus-info-img .swiper-button-next {
	position: absolute;
	width: 20px;
	height: 36px;
	right: 0;
	top: 40px;
	cursor: pointer;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	opacity: .35;
}

.bus-info-img .swiper-button-prev img,
.bus-info-img .swiper-button-next img {
	width: 100%;
}

.bus-info-img .swiper-button-prev {
	right: 60px;
}

.bus-info-img .swiper-button-prev:hover,
.bus-info-img .swiper-button-next:hover {
	opacity: 1;
} */


.bus-case {
	padding: 90px 0 0;
}

.bus-case-view {
	position: relative;
	padding-top: 10px;
}

.bus-case-view .swiper-wrapper {
	-webkit-align-items: stretch;
	   -moz-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}

.bus-case-view .swiper-slide {
	height: auto;
	top: 0;
	background: #f5f5f5;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

.bus-case-view .swiper-slide:hover {
	top: -10px;
}

.bus-case-view .items {
	display: block;
	font-size: 16px;
	color: #666666;
}

.bus-case-view .items .images {
	overflow: hidden;
}

.bus-case-view .items .images img {
	-webkit-transition: 1.2s ease-in-out;
	-o-transition: 1.2s ease-in-out;
	-moz-transition: 1.2s ease-in-out;
	transition: 1.2s ease-in-out;
	width: 100%;
}

.bus-case-view .items:hover .images img {
	-webkit-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	-webkit-transform: scale3d(1.05, 1.05, 1);
	-moz-transform: scale3d(1.05, 1.05, 1);
	     transform: scale3d(1.05, 1.05, 1);
}

.bus-case-view .items .words {
	padding: 30px 30px 40px;
}

.bus-case-view .items .tit {
	font-size: 16px;
	color: #333333;
}

.bus-case-view .items .txt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-top: 9px;
	font-size: 15px;
}


.business-info-box{
	margin-top: 10px;
	background: #f8f8fa;
}
.business-info-box li{
	margin-bottom: 50px;
}
.business-info-box li:last-child{
	margin-bottom: 0;
}
.business-info-box .business-list-li{
	width: 101.5%;
	margin-left: -1.5%;
}
.business-info-box .business-list-box{
	margin-left: 1.5%;
	margin-bottom: 1.5%;
    width: 31.833%;
	background: #fff;
	/* border-radius: 10px; */
	border: 1px solid #e4e4e4;
	overflow: hidden;
	/* background: rgba(37, 89, 159, 0.13);
    box-shadow: 0 0 30px rgba(0,0,0,0.1); */
}
.business-info-box li h3{
	font-size: 25px;
    color: #fff;
	margin-bottom: 30px;
	line-height: 56px;
	display: inline-block;
	background: #25599f;
	padding-right: 28px;
	border-radius: 28px;
}
.business-info-box li h3 span{
	width: 56px;
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -1px;
}
.business-info-box li h3 span img{
	width: 35px;
	margin: 7px auto 0;
}
.business-info-box .business-list-box p,
.business-info-box .business-list-box *{
	font-size: 15px !important;
	/* color: #666 !important; */
	/* margin-bottom: 3px !important; */
	line-height: 1.8 !important;
}
.business-info-box .business-list-box p{
	padding: 10px 28px;
	/* border-bottom: 1px dotted #c7c7c7; */
}
.business-info-box .business-list-box p:nth-child(2n){
	background: #eaeaea;
}
.business-list-p{
	background: #fff;
	/* padding: 28px; */
}
.business-info-box .business-list-box h5{
	position: relative;
	font-size: 18px !important;
    color: #fff !important;
	padding: 7px 28px;
	background: #25599f;
	text-align: center;
}
/* .business-info-box .business-list-box:nth-child(2n) h5{
	background: #3172ca;
}
.business-info-box .business-list-box:nth-child(3n) h5{
	background: #009844;
} */
/* .business-info-box .business-list-box h5::before{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 20px;
	height: 2px;
	background: #999;
}
.business-info-box .business-list-box h5 span{
	position: absolute;
    font-size: 35px !important;
    top: 2px;
    right: 0;
    color: #009844 !important;
    line-height: 1 !important;
} */


.business-view-ny {
	background: #f8f8fa;

}

.business-view-title {
	margin-bottom: 40px;
	/* border-bottom: 1px solid #25599f; */
}

.business-view-title h3 {
	position: relative;
	padding-left: 125px;
	font-weight: bold;
	color: #25599f;
	font-size: 25px;
	line-height: 30px;
}

.business-view-title h3::before {
	position: absolute;
	content: '';
	width: 95px;
	height: 30px;
	top: 0;
	left: 0;
	background: #25599f;
}

.business-view-title h3::after {
	position: absolute;
	content: '';
	width: 6px;
	height: 30px;
	top: 0;
	left: 100px;
	background: #25599f;
}

.business-view-info {
	/* align-items: center; */
	margin-bottom: 60px;
}

.business-view-info-right {
	-webkit-flex-direction: row-reverse;
	   -moz-box-orient: horizontal;
	   -moz-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}

.business-view-text {
	width: 50%;
	padding: 30px 5% 30px 0;
}

.business-view-info-right .business-view-text {
	padding-left: 5%;
	padding-right: 0;
}

.business-view-text h3 {
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid #25599f;
	color: #25599f;
	line-height: 1;
	margin-bottom: 30px;
}

.business-view-text h3 span {
	display: inline-block;
	vertical-align: bottom;
	font-size: 25px;
	padding-right: 10px;
	line-height: 0.8;
}

.business-view-text p {
	position: relative;
	color: #666;
	margin-top: 10px;
	font-size: 15px;
	padding-left: 15px;
}

.business-view-text p::before {
	position: absolute;
	content: '';
	width: 4px;
	height: 4px;
	top: 11px;
	left: 0;
	background: #25599f;
	border-radius: 50%;
}

.business-view-img {
	width: 50%;
	position: relative;
	min-height: 350px;
	/* padding-top: 20%; */
	overflow: hidden;
}

.business-view-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
}

/* business  end */

.con_list li {
	opacity: 0;
	opacity: 1\0;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	 -ms-transform: translateY(30px);
	  -o-transform: translateY(30px);
	     transform: translateY(30px);
}

.con_list.appear li:nth-child(1) {
	-webkit-animation: fadeInDown 1s cubic-bezier(.25, .74, .22, .99) forwards;
	-moz-animation: fadeInDown 1s cubic-bezier(.25, .74, .22, .99) forwards;
	  -o-animation: fadeInDown 1s cubic-bezier(.25, .74, .22, .99) forwards;
	     animation: fadeInDown 1s cubic-bezier(.25, .74, .22, .99) forwards;
}

.con_list.appear li:nth-child(2) {
	-webkit-animation: fadeInDown 1s 0.2s cubic-bezier(.25, .74, .22, .99) forwards;
	-moz-animation: fadeInDown 1s 0.2s cubic-bezier(.25, .74, .22, .99) forwards;
	  -o-animation: fadeInDown 1s 0.2s cubic-bezier(.25, .74, .22, .99) forwards;
	     animation: fadeInDown 1s 0.2s cubic-bezier(.25, .74, .22, .99) forwards;
}

.con_list.appear li:nth-child(3) {
	-webkit-animation: fadeInDown 1s 0.4s cubic-bezier(.25, .74, .22, .99) forwards;
	-moz-animation: fadeInDown 1s 0.4s cubic-bezier(.25, .74, .22, .99) forwards;
	  -o-animation: fadeInDown 1s 0.4s cubic-bezier(.25, .74, .22, .99) forwards;
	     animation: fadeInDown 1s 0.4s cubic-bezier(.25, .74, .22, .99) forwards;
}

.con_list.appear li:nth-child(4) {
	-webkit-animation: fadeInDown 1s 0.6s cubic-bezier(.25, .74, .22, .99) forwards;
	-moz-animation: fadeInDown 1s 0.6s cubic-bezier(.25, .74, .22, .99) forwards;
	  -o-animation: fadeInDown 1s 0.6s cubic-bezier(.25, .74, .22, .99) forwards;
	     animation: fadeInDown 1s 0.6s cubic-bezier(.25, .74, .22, .99) forwards;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px)
	}

	100% {
		opacity: 1;
		opacity: 1\0;
		-webkit-transform: translateY(0)
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		-moz-transform: translateY(30px);
		     transform: translateY(30px)
	}

	100% {
		opacity: 1;
		opacity: 1\0;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		     transform: translateY(0)
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		-o-transform: translateY(30px);
		   transform: translateY(30px)
	}

	100% {
		opacity: 1;
		opacity: 1\0;
		-webkit-transform: translateY(0);
		-o-transform: translateY(0);
		   transform: translateY(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		-moz-transform: translateY(30px);
		  -o-transform: translateY(30px);
		     transform: translateY(30px)
	}

	100% {
		opacity: 1;
		opacity: 1\0;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		  -o-transform: translateY(0);
		     transform: translateY(0)
	}
}


.slide-right {
	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	 -ms-transform: scale(0.3);
	  -o-transform: scale(0.3);
	     transform: scale(0.3);
	-webkit-transform: translateX(100px);
	-moz-transform: translateX(100px);
	 -ms-transform: translateX(100px);
	  -o-transform: translateX(100px);
	     transform: translateX(100px);
}

.appear-r {
	-wewgtit-animation: opacity_show_r 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	-webkit-animation: opacity_show_r 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	-moz-animation: opacity_show_r 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	  -o-animation: opacity_show_r 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	     animation: opacity_show_r 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

@-wewgtit-keyframes opacity_show_r {
	0% {
		-webkit-transform: scale(0.3);
		-moz-transform: scale(0.3);
		 -ms-transform: scale(0.3);
		  -o-transform: scale(0.3);
		     transform: scale(0.3);
		-webkit-transform: translateX(100px);
		-moz-transform: translateX(100px);
		 -ms-transform: translateX(100px);
		  -o-transform: translateX(100px);
		     transform: translateX(100px);
	}

	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		 -ms-transform: scale(1);
		  -o-transform: scale(1);
		     transform: scale(1);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		 -ms-transform: translateX(0);
		  -o-transform: translateX(0);
		     transform: translateX(0);
	}
}

@-webkit-keyframes opacity_show_r {
	0% {
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
		-webkit-transform: translateX(100px);
		transform: translateX(100px);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@-moz-keyframes opacity_show_r {
	0% {
		-webkit-transform: scale(0.3);
		-moz-transform: scale(0.3);
		     transform: scale(0.3);
		-webkit-transform: translateX(100px);
		-moz-transform: translateX(100px);
		     transform: translateX(100px);
	}

	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		     transform: scale(1);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		     transform: translateX(0);
	}
}

@-o-keyframes opacity_show_r {
	0% {
		-webkit-transform: scale(0.3);
		-o-transform: scale(0.3);
		   transform: scale(0.3);
		-webkit-transform: translateX(100px);
		-o-transform: translateX(100px);
		   transform: translateX(100px);
	}

	100% {
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		   transform: scale(1);
		-webkit-transform: translateX(0);
		-o-transform: translateX(0);
		   transform: translateX(0);
	}
}

@keyframes opacity_show_r {
	0% {
		-webkit-transform: scale(0.3);
		-moz-transform: scale(0.3);
		  -o-transform: scale(0.3);
		     transform: scale(0.3);
		-webkit-transform: translateX(100px);
		-moz-transform: translateX(100px);
		  -o-transform: translateX(100px);
		     transform: translateX(100px);
	}

	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		  -o-transform: scale(1);
		     transform: scale(1);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		  -o-transform: translateX(0);
		     transform: translateX(0);
	}
}


.slide-left {
	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	 -ms-transform: scale(0.3);
	  -o-transform: scale(0.3);
	     transform: scale(0.3);
	-webkit-transform: translateX(-100px);
	-moz-transform: translateX(-100px);
	 -ms-transform: translateX(-100px);
	  -o-transform: translateX(-100px);
	     transform: translateX(-100px);
}

.appear-l {
	-wewgtit-animation: opacity_show_l 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	-webkit-animation: opacity_show_l 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	-moz-animation: opacity_show_l 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	  -o-animation: opacity_show_l 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
	     animation: opacity_show_l 0.85s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

@-wewgtit-keyframes opacity_show_l {
	0% {
		-webkit-transform: scale(0.3);
		-moz-transform: scale(0.3);
		 -ms-transform: scale(0.3);
		  -o-transform: scale(0.3);
		     transform: scale(0.3);
		-webkit-transform: translateX(-100px);
		-moz-transform: translateX(-100px);
		 -ms-transform: translateX(-100px);
		  -o-transform: translateX(-100px);
		     transform: translateX(-100px);
	}

	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		 -ms-transform: scale(1);
		  -o-transform: scale(1);
		     transform: scale(1);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		 -ms-transform: translateX(0);
		  -o-transform: translateX(0);
		     transform: translateX(0);
	}
}

@-webkit-keyframes opacity_show_l {
	0% {
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
		-webkit-transform: translateX(-100px);
		transform: translateX(-100px);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@-moz-keyframes opacity_show_l {
	0% {
		-webkit-transform: scale(0.3);
		-moz-transform: scale(0.3);
		     transform: scale(0.3);
		-webkit-transform: translateX(-100px);
		-moz-transform: translateX(-100px);
		     transform: translateX(-100px);
	}

	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		     transform: scale(1);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		     transform: translateX(0);
	}
}

@-o-keyframes opacity_show_l {
	0% {
		-webkit-transform: scale(0.3);
		-o-transform: scale(0.3);
		   transform: scale(0.3);
		-webkit-transform: translateX(-100px);
		-o-transform: translateX(-100px);
		   transform: translateX(-100px);
	}

	100% {
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		   transform: scale(1);
		-webkit-transform: translateX(0);
		-o-transform: translateX(0);
		   transform: translateX(0);
	}
}

@keyframes opacity_show_l {
	0% {
		-webkit-transform: scale(0.3);
		-moz-transform: scale(0.3);
		  -o-transform: scale(0.3);
		     transform: scale(0.3);
		-webkit-transform: translateX(-100px);
		-moz-transform: translateX(-100px);
		  -o-transform: translateX(-100px);
		     transform: translateX(-100px);
	}

	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		  -o-transform: scale(1);
		     transform: scale(1);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		  -o-transform: translateX(0);
		     transform: translateX(0);
	}
}


.cd-list__full table{
	max-width: 100% !important;
	margin: 0 auto !important;
}